home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinME File Handles.xpl < prev    next >
Text File  |  2001-05-04  |  1KB  |  47 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="System\File System\Windows 9x/ME Options\Misc"
  5. "NAME"="File Handles"
  6. "OSVERSION"="00001"
  7. "VERSION"="1.02"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="File Handles"
  10. "DESCRIPTION 1"="By default, WinME uses 30 as the number of file handles for MS-DOS apps. To increase available file handles, add to that amount [30] by entering a value of choice. Maximum is 225."
  11. "AUTHOR"="Ojatex@aol.com"
  12. "CONTACTURL"="http://members.aol.com/ojatex/"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "COMMENT 1"="For X-Setup program information, go to http://www.xteq.com."
  15. "COMMENT 2"="Thanks to CptSiskoX for tip."
  16.  
  17. sf="SYSTEM.INI"
  18. ss="386Enh"
  19. v1="PerVMFiles"
  20.  
  21.  
  22. Sub Plugin_Initialize 
  23.   i=IniReadValue(sf,ss,v1)
  24.   SetUIElement 1,i
  25. End Sub
  26.  
  27. Sub Plugin_CheckData(ElementIndex)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  i=GetUIElement(1)
  32.  if len(i)=0 then
  33.     Call IniWriteValue(sf,ss,v1,"")
  34.  else
  35.     Call IniWriteValue(sf,ss,v1,i)
  36.  end if
  37.  
  38.  
  39.  Restart
  40. End Sub
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.  
  45.  
  46.  
  47.